home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
dev
/
misc
/
OpalDev.lha
/
Examples
/
kill.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-10-01
|
293 b
|
18 lines
#include "opal/opallib.h"
#include <stdlib.h>
#ifndef AZTEC_C
#include <proto/all.h>
#endif
struct OpalBase *OpalBase;
main()
{
OpalBase = (struct OpalBase *) OpenLibrary ("opal.library",0L);
if (OpalBase==NULL) exit (10);
CloseScreen24();
CloseLibrary ((struct Library *)OpalBase);
}